
        /* --- تنظیمات کلی و متغیرها --- */
        :root {
            --primary: #5b8def;
            --primary-dark: #4a7de5;
            --primary-light: #e8f0fe;
            --primary-soft: rgba(91, 141, 239, 0.12);
            
            --text-main: #1e293b;
            --text-light: #475569;
            --text-subtle: #94a3b8;
            --text-muted: #64748b;
            
            --border-light: #e2e8f0;
            --border-soft: #f1f5f9;
            
            --bg-page: #ffffff;
            --bg-surface: #fafafa;
            --bg-card: #ffffff;
            --bg-hover: #f8fafc;
            
            --header-bg-soft: rgba(255, 255, 255, 0.95);
            --header-bg-scrolled: rgba(255, 255, 255, 0.98);
            --border-glass: rgba(91, 141, 239, 0.15);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(91, 141, 239, 0.15);
            
            --footer-bg: #1e293b;
            --footer-bg-dark: #0f172a;
            --footer-text: #e2e8f0;
            --footer-text-muted: #94a3b8;
            
            --header-h: 85px;
            --logo-size: 50px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-pill: 999px;
            
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background: var(--bg-page);
            color: var(--text-main);
            line-height: 1.8;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        img { max-width: 100%; display: block; }

        /* ==================== HEADER STYLES ==================== */
        .header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            height: var(--header-h);
            background: var(--header-bg-soft);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-glass);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 0 4%;
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            height: 70px;
            background: var(--header-bg-scrolled);
            box-shadow: var(--shadow);
        }

        .header-right {
            display: flex; align-items: center; justify-content: flex-start;
        }

        .logo {
            display: flex; align-items: center; gap: 12px;
            text-decoration: none; transition: var(--transition);
        }

        .logo-img {
            height: var(--logo-size); width: auto; object-fit: contain;
            transition: var(--transition);
        }

        .logo-content {
            display: flex; flex-direction: column; gap: 2px;
        }

        .logo-text {
            font-size: 1.5rem; font-weight: 700; color: var(--text-main); line-height: 1.2;
        }

        .logo-text span { color: var(--primary); }

        .logo-tagline {
            font-size: 0.7rem; font-weight: 400; color: var(--text-subtle);
            letter-spacing: 0.5px; white-space: nowrap;
        }

        .header.scrolled .logo-img { height: calc(var(--logo-size) - 10px); }
        .header.scrolled .logo-text { font-size: 1.3rem; }
        .header.scrolled .logo-tagline { font-size: 0.65rem; }

        .header-center { display: flex; align-items: center; justify-content: center; }

        .nav-list {
            display: flex; list-style: none; gap: 0.3rem; align-items: center;
            background: rgba(255,255,255,0.6); padding: 6px 12px;
            border-radius: 15px; border: 1px solid var(--border-glass);
        }

        .nav-item { position: relative; }

        .nav-link {
            display: flex; align-items: center; gap: 8px; text-decoration: none;
            color: var(--text-main); font-weight: 500; font-size: 0.90rem;
            padding: 8px 10px; border-radius: 12px; transition: var(--transition);
            white-space: nowrap; position: relative; cursor: pointer;
        }

        .nav-link i { font-size: 1.2rem; color: var(--text-light); transition: var(--transition); }
        .nav-link:hover { color: var(--primary); background: var(--bg-hover); }
        .nav-link:hover i { color: var(--primary); }

        .nav-link::after {
            content: ''; position: absolute; bottom: 6px; right: 10px; left: 10px;
            height: 2px; background: var(--primary); border-radius: 2px;
            transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease;
        }

        .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
        .nav-link.active { color: var(--primary); background: var(--primary-light); }
        .nav-link.active i { color: var(--primary); }

        .dropdown-toggle::after {
            content: '\25BC'; font-size: 0.6rem; margin-right: 4px;
            transition: transform 0.3s ease; display: inline-block;
        }
        .dropdown-toggle.active::after { transform: rotate(180deg); }

        .dropdown-menu {
            position: absolute; top: calc(100% + 15px); right: 0;
            background: white; display: grid; grid-template-columns: repeat(2, 1fr);
            gap: 15px; width: 500px; padding: 25px; border-radius: 20px;
            border: 2px solid var(--border-glass);
            box-shadow: var(--shadow-lg), 0 0 0 4px var(--primary-soft);
            opacity: 0; visibility: hidden; transform: translateY(20px);
            transition: var(--transition); z-index: 1001;
        }

        @media (min-width: 1025px) {
            .nav-item:hover .dropdown-menu {
                opacity: 1; visibility: visible; transform: translateY(0);
            }
        }

        .nav-item:hover .dropdown-menu::before {
            content: ''; position: absolute; top: -10px; right: 30px;
            width: 18px; height: 18px; background: white; transform: rotate(45deg);
            border-top: 2px solid var(--border-glass);
            border-left: 2px solid var(--border-glass);
            border-top-right-radius: 6px; z-index: -1;
        }

        .dropdown-item a {
            display: flex; align-items: center; gap: 12px; text-decoration: none;
            color: var(--text-main); padding: 12px 15px; border-radius: 10px;
            font-size: 0.95rem; transition: var(--transition);
            background: var(--bg-surface); border: 1px solid transparent;
            position: relative; overflow: hidden;
        }

        .dropdown-item a::after {
            content: ''; position: absolute; bottom: 8px; right: 15px; left: 15px;
            height: 2px; background: linear-gradient(90deg, var(--primary), #7aa8f7);
            transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease;
            border-radius: 2px;
        }

        .dropdown-item a:hover::after { transform: scaleX(1); }
        .dropdown-item a:hover {
            background-color: var(--primary-light); color: var(--primary);
            padding-right: 20px; border-color: var(--border-glass);
        }
        .dropdown-item a i { font-size: 1.4rem; color: var(--text-light); }
        .dropdown-item a:hover i { color: var(--primary); }

        .header-left {
            display: flex; align-items: center; justify-content: flex-end; gap: 10px;
        }

        .chat-btn {
            display: flex; align-items: center; gap: 6px;
            color: var(--text-main); background: white;
            border: 1.5px solid var(--border-light);
            padding: 9px 18px; border-radius: 50px;
            text-decoration: none; font-weight: 500; font-size: 0.9rem;
            transition: var(--transition); white-space: nowrap;
        }
        .chat-btn i { font-size: 1.1rem; color: #10b981; }
        .chat-btn:hover { border-color: #10b981; color: #10b981; background: #f0fdf4; }

        .login-btn {
            display: flex; align-items: center; gap: 6px;
            color: var(--text-main); background: white;
            border: 1.5px solid var(--border-light);
            padding: 9px 18px; border-radius: 50px;
            text-decoration: none; font-weight: 500; font-size: 0.9rem;
            transition: var(--transition); white-space: nowrap;
        }
        .login-btn i { font-size: 1.1rem; color: var(--primary); }
        .login-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

        .mobile-toggle {
            display: none; flex-direction: column; gap: 6px;
            cursor: pointer; padding: 5px; z-index: 1002;
        }
        .bar { width: 28px; height: 3px; background-color: var(--text-main); border-radius: 4px; transition: var(--transition); }
        .mobile-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--primary); }
        .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
        .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--primary); }

        @media (max-width: 1100px) {
            .nav-link span { display: none; }
            .nav-link { padding: 10px; justify-content: center; }
            .chat-btn span, .login-btn span { display: none; }
            .chat-btn, .login-btn { padding: 12px; border-radius: 50%; }
            .logo-tagline { display: none; }
        }

        @media (max-width: 1024px) {
            .header { grid-template-columns: 1fr auto; }
            .header-left { display: none; }
            
            .nav-container {
                position: absolute; top: var(--header-h); left: 0; width: 100%;
                background: var(--header-bg-scrolled); backdrop-filter: blur(20px);
                flex-direction: column; align-items: center; padding: 20px 0;
                border-bottom: 1px solid var(--border-glass); box-shadow: var(--shadow);
                opacity: 0; visibility: hidden; transform: translateY(-20px);
                transition: var(--transition);
            }
            .nav-container.active { opacity: 1; visibility: visible; transform: translateY(0); }
            .mobile-toggle { display: flex; }
            
            .nav-list {
                flex-direction: column; width: 100%; align-items: center;
                gap: 5px; background: transparent; padding: 0; border: none;
            }
            .nav-item { 
                width: 100%; text-align: center; 
                opacity: 0; transform: translateX(50px);
            }
            .nav-container.active .nav-item {
                animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            }
            .nav-container.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .nav-container.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .nav-container.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .nav-container.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .nav-container.active .nav-item:nth-child(5) { animation-delay: 0.5s; }
            .nav-container.active .nav-item:nth-child(6) { animation-delay: 0.6s; }
            .nav-container.active .mobile-cta { animation-delay: 0.7s; }
            .nav-container.active .mobile-login { animation-delay: 0.8s; }
            
            .nav-link { 
                width: 90%; justify-content: center; padding: 12px;
                background: white; margin: 5px 0;
                border: 1px solid var(--border-light);
            }
            .nav-link span { display: inline; }
            .nav-link::after { display: none; }
            
            .dropdown-menu {
                position: static; background: var(--bg-surface);
                width: 90%; margin: 10px auto 0; display: none;
                opacity: 0; visibility: hidden; transform: translateY(-10px);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 0; grid-template-columns: 1fr; gap: 0;
                border: 1px solid var(--border-light); border-radius: 12px;
                overflow: hidden; box-shadow: none;
            }
            .dropdown-menu.show {
                display: grid; opacity: 1; visibility: visible; transform: translateY(0);
                padding: 15px;
            }
            .dropdown-item { opacity: 0; transform: translateX(20px); transition: all 0.3s ease; }
            .dropdown-menu.show .dropdown-item { opacity: 1; transform: translateX(0); }
            .dropdown-menu.show .dropdown-item:nth-child(1) { transition-delay: 0.05s; }
            .dropdown-menu.show .dropdown-item:nth-child(2) { transition-delay: 0.1s; }
            .dropdown-menu.show .dropdown-item:nth-child(3) { transition-delay: 0.15s; }
            .dropdown-menu.show .dropdown-item:nth-child(4) { transition-delay: 0.2s; }
            .dropdown-menu.show .dropdown-item:nth-child(5) { transition-delay: 0.25s; }
            
            .dropdown-item a { 
                justify-content: center; background: white; margin: 5px 0;
                border: 1px solid var(--border-light);
            }
            .dropdown-item a:hover { 
                transform: none; padding-right: 15px;
                background: var(--primary); color: white;
            }
            .dropdown-item a:hover i { color: white; }
            .dropdown-item a::after { display: none; }
            
            .mobile-cta, .mobile-login {
                display: flex; width: 90%; justify-content: center;
                margin-top: 10px; opacity: 0; transform: translateX(50px);
            }
        }
        @media (min-width: 1025px) { .mobile-cta, .mobile-login { display: none; } }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ==================== HERO STYLES ==================== */
        .hero-new {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 120px 20px 80px;
            background: var(--bg-page);
            overflow: hidden;
            direction: rtl;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-gradient {
            position: absolute;
            width: 120%;
            height: 120%;
            top: -10%;
            left: -10%;
            background: radial-gradient(ellipse at 30% 20%, var(--primary-soft) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 80%, rgba(134, 239, 172, 0.1) 0%, transparent 50%);
            animation: gradientMove 20s ease-in-out infinite;
        }

        @keyframes gradientMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(2%, 2%) scale(1.05); }
            66% { transform: translate(-1%, 1%) scale(0.98); }
        }

        .hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            animation: float 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: #86efac;
            bottom: -50px;
            right: 15%;
            animation-delay: -2s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: #a78bfa;
            top: 40%;
            left: 5%;
            animation-delay: -4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(10px); }
        }

        .hero-bg-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(91, 141, 239, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(91, 141, 239, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--primary-light), rgba(134, 239, 172, 0.2));
            border: 1px solid var(--border-light);
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .badge-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-right: auto;
        }
        @media (max-width: 1024px) {
            .badge-link { margin: 0 auto; }
        }

        .hero-title {
            font-size: clamp(32px, 6vw, 52px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary), #7aa8f7, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            position: relative;
        }

        .text-gradient::after {
            content: '';
            position: absolute;
            bottom: 8px;
            right: 0;
            left: 0;
            height: 12px;
            background: linear-gradient(135deg, rgba(91, 141, 239, 0.2), rgba(134, 239, 172, 0.2));
            border-radius: 8px;
            z-index: -1;
            filter: blur(8px);
        }

        .hero-desc {
            font-size: clamp(16px, 2.2vw, 18px);
            color: var(--text-light);
            line-height: 1.9;
            max-width: 580px;
            margin-bottom: 32px;
        }

        @media (max-width: 1024px) {
            .hero-desc { margin: 0 auto 32px; }
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        @media (max-width: 1024px) {
            .hero-cta { justify-content: center; }
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 16px;
            border-radius: 16px;
            gap: 10px;
        }

        .btn-primary {
            position: relative;
            overflow: hidden;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(91, 141, 239, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--border-light);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 520px;
        }

        @media (max-width: 600px) {
            .hero-stats { grid-template-columns: 1fr; }
        }

        .stat-item {
            text-align: center;
            padding: 20px 16px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-soft);
            transition: var(--transition);
        }

        .stat-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat-item span:last-of-type {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-text {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 520px;
            aspect-ratio: 4/3;
        }

        .dashboard-preview {
            position: absolute;
            inset: 0;
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            animation: floatDashboard 6s ease-in-out infinite;
        }

        @keyframes floatDashboard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-soft);
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .dashboard-dot.red { background: #ef4444; }
        .dashboard-dot.yellow { background: #f59e0b; }
        .dashboard-dot.green { background: #22c55e; }

        .dashboard-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-right: auto;
        }

        .dashboard-body {
            padding: 24px;
        }

        .chart-placeholder {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            height: 120px;
            margin-bottom: 20px;
            padding: 0 10px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, var(--primary), var(--primary-dark));
            border-radius: 6px 6px 0 0;
            position: relative;
            animation: growBar 1s ease-out forwards;
            opacity: 0;
        }

        .chart-bar:nth-child(1) { animation-delay: 0.2s; opacity: 1; }
        .chart-bar:nth-child(2) { animation-delay: 0.4s; opacity: 1; }
        .chart-bar:nth-child(3) { animation-delay: 0.6s; opacity: 1; }
        .chart-bar:nth-child(4) { animation-delay: 0.8s; opacity: 1; }
        .chart-bar:nth-child(5) { animation-delay: 1s; opacity: 1; }
        .chart-bar:nth-child(6) { animation-delay: 1.2s; opacity: 1; }

        @keyframes growBar {
            from { height: 0; }
        }

        .dashboard-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .metric {
            text-align: center;
            padding: 14px;
            background: var(--bg-surface);
            border-radius: 12px;
        }

        .metric-value {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
        }

        .metric-value.positive {
            color: #22c55e;
        }

        .metric-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        .floating-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: var(--bg-card);
            border-radius: 14px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow);
            font-size: 13px;
            font-weight: 500;
            animation: floatCard 4s ease-in-out infinite;
            z-index: 2;
        }

        .floating-card i {
            font-size: 18px;
            color: #22c55e;
        }

        .card-1 {
            top: 10%;
            left: -20px;
            animation-delay: 0s;
        }

        .card-2 {
            bottom: 15%;
            right: -15px;
            animation-delay: -2s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-15px) translateX(8px); }
        }

        .video-play-btn {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: none;
            display: grid;
            place-items: center;
            font-size: 24px;
            color: var(--primary);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: var(--transition);
            z-index: 3;
        }

        .video-play-btn:hover {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 12px 40px rgba(91, 141, 239, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 13px;
            animation: bounce 2s infinite;
            z-index: 1;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator i {
            font-size: 20px;
        }

        .video-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .video-modal.active {
            display: flex;
        }

        .video-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
        }

        .video-modal-content {
            position: relative;
            max-width: 900px;
            width: 100%;
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            z-index: 1;
            animation: modalIn 0.3s ease;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .video-close {
            position: absolute;
            top: 16px;
            left: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            display: grid;
            place-items: center;
            font-size: 20px;
            color: var(--text-main);
            cursor: pointer;
            transition: var(--transition);
            z-index: 2;
        }

        .video-close:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        .video-container {
            position: relative;
            padding-top: 56.25%;
            background: #000;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .video-caption {
            text-align: center;
            padding: 16px;
            font-size: 14px;
            color: var(--text-muted);
            background: var(--bg-surface);
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.6s ease forwards;
            opacity: 0;
            transform: translateX(30px);
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        @keyframes fadeIn { to { opacity: 1; } }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } }

        @media (max-width: 768px) {
            .hero-new {
                padding: 100px 16px 60px;
                min-height: auto;
                padding-bottom: 100px;
            }
            .visual-wrapper {
                max-width: 100%;
                aspect-ratio: 16/10;
            }
            .dashboard-preview {
                border-radius: 20px;
            }
            .floating-card {
                display: none;
            }
            .video-play-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* ==================== MAIN CONTENT ==================== */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px 20px;
        }

        .section { margin-bottom: 70px; }

        .section-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 18px;
            background: var(--primary-light);
            border-radius: var(--radius-pill);
            font-size: 13px; font-weight: 500;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(22px, 4vw, 32px);
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-main);
        }

        .section-header p {
            color: var(--text-light);
            max-width: 580px;
            margin: 0 auto;
            font-size: 16px;
        }

        .grid { display: grid; gap: 20px; }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }

        @media (max-width: 900px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
        }

        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--border-soft);
            transition: var(--transition);
            position: relative;
        }
        .card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .card-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: var(--primary-light);
            display: grid; place-items: center;
            margin-bottom: 18px;
            font-size: 24px; color: var(--primary);
        }

        .card h3 {
            font-size: 19px; font-weight: 600;
            margin-bottom: 10px; color: var(--text-main);
        }

        .card p {
            color: var(--text-light);
            font-size: 15px; line-height: 1.7;
        }

        .feature-list { display: flex; flex-direction: column; gap: 14px; }

        .feature-item {
            display: flex; gap: 14px; align-items: flex-start;
            padding: 14px 18px;
            background: var(--bg-surface);
            border-radius: 14px;
            border: 1px solid var(--border-soft);
            transition: var(--transition);
        }
        .feature-item:hover {
            border-color: var(--primary);
            background: var(--bg-hover);
        }

        .feature-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: rgba(134, 239, 172, 0.2);
            display: grid; place-items: center;
            color: #22c55e;
            font-size: 17px; flex-shrink: 0; margin-top: 2px;
        }

        .feature-content h4 {
            font-size: 15px; font-weight: 600;
            margin-bottom: 3px; color: var(--text-main);
        }
        .feature-content p {
            font-size: 14px; color: var(--text-muted);
            margin: 0; line-height: 1.6;
        }

        .module-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 14px;
        }

        .module-item {
            text-align: center;
            padding: 22px 14px;
            background: var(--bg-surface);
            border-radius: 16px;
            border: 1px solid var(--border-soft);
            transition: var(--transition);
            cursor: default;
        }
        .module-item:hover {
            border-color: var(--primary);
            background: var(--bg-hover);
            transform: translateY(-3px);
        }

        .module-icon {
            width: 44px; height: 44px;
            margin: 0 auto 10px;
            border-radius: 12px;
            background: var(--primary-light);
            display: grid; place-items: center;
            font-size: 20px; color: var(--primary);
        }

        .module-item strong {
            display: block; font-size: 14px; font-weight: 600;
            margin-bottom: 3px; color: var(--text-main);
        }
        .module-item span { font-size: 12px; color: var(--text-muted); }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

        .why-list { display: flex; flex-direction: column; gap: 18px; }
        .why-item { display: flex; gap: 14px; }

        .why-check {
            width: 26px; height: 26px;
            border-radius: 8px;
            background: rgba(134, 239, 172, 0.2);
            display: grid; place-items: center;
            color: #22c55e;
            font-size: 15px; font-weight: 600;
            flex-shrink: 0; margin-top: 2px;
        }

        .why-text h4 {
            font-size: 16px; font-weight: 600;
            margin-bottom: 3px; color: var(--text-main);
        }
        .why-text p {
            font-size: 14px; color: var(--text-muted);
            margin: 0; line-height: 1.6;
        }

        .why-image {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 36px;
            border: 1px solid var(--border-soft);
            display: grid; place-items: center;
            min-height: 280px;
        }
        .why-image i {
            font-size: 70px; color: var(--primary); opacity: 0.7;
        }

        .contact-panel {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px;
            border: 1px solid var(--border-soft);
            position: sticky;
            top: 100px;
        }

        .contact-panel h3 {
            font-size: 19px; font-weight: 600;
            margin-bottom: 22px;
            display: flex; align-items: center; gap: 10px;
            color: var(--text-main);
        }
        .contact-panel h3 i { color: var(--primary); font-size: 20px; }

        .contact-items { display: flex; flex-direction: column; gap: 18px; }
        .contact-item { display: flex; gap: 14px; align-items: flex-start; }

        .contact-item i {
            width: 40px; height: 40px;
            border-radius: 11px;
            background: var(--primary-light);
            display: grid; place-items: center;
            color: var(--primary);
            font-size: 18px; flex-shrink: 0;
        }

        .contact-item .info .label {
            font-size: 12px; color: var(--text-muted); margin-bottom: 3px;
        }
        .contact-item .info .value {
            font-size: 15px; font-weight: 500; color: var(--text-main);
        }
        .contact-item .info .value a { color: var(--primary); }
        .contact-item .info .value a:hover { color: var(--primary-dark); }

        .social-links {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #1f2937;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon {
            width: 22px;
            height: 22px;
            object-fit: contain;
            transition: filter 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
            background: #2563eb;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .social-link:hover .social-icon {
            filter: brightness(0) invert(1);
        }
        
        .adress {
            color: #72f904;
            font-weight: bold;
        }

        /* ==================== FOOTER STYLES ==================== */
        .footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 80px 0 0 0;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4%;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-about .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .footer-about .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-about .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .footer-about .logo-text span {
            color: var(--primary);
        }

        .footer-about .tagline {
            color: var(--footer-text-muted);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--footer-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a i {
            font-size: 0.9rem;
            color: var(--primary);
            opacity: 0;
            transform: translateX(10px);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-right: 8px;
        }

        .footer-links a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--footer-text-muted);
        }

        .footer-contact .contact-item i {
            font-size: 1.2rem;
            color: var(--primary);
            margin-top: 2px;
        }

        .footer-contact .contact-item span {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-contact .contact-item a {
            color: var(--footer-text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact .contact-item a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding: 25px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: var(--footer-text-muted);
            font-size: 0.9rem;
        }

        .copyright a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: var(--footer-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 8px 25px rgba(91, 141, 239, 0.4);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(91, 141, 239, 0.5);
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-on-scroll {
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .animate-on-scroll.visible {
            opacity: 1; transform: translateY(0);
        }

        .footer-animate {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        .footer-animate:nth-child(1) { animation-delay: 0.1s; }
        .footer-animate:nth-child(2) { animation-delay: 0.2s; }
        .footer-animate:nth-child(3) { animation-delay: 0.3s; }
        .footer-animate:nth-child(4) { animation-delay: 0.4s; }

        .divider {
            height: 1px; background: var(--border-soft);
            margin: 50px 0;
        }

        .text-center { text-align: center; }
        .mt-36 { margin-top: 36px; }
        .mb-20 { margin-bottom: 20px; }

        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 60px 0 0 0;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-bottom: 40px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            .footer-about {
                text-align: center;
            }
            .footer-about .logo {
                justify-content: center;
            }
            .footer-title::after {
                right: 50%;
                transform: translateX(50%);
            }
            .footer-links a:hover {
                padding-right: 0;
            }
            .footer-links a i {
                display: none;
            }
        }
   